home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
webmon_1
/
frmexit.frm
< prev
next >
Wrap
Text File
|
1999-08-09
|
1KB
|
50 lines
VERSION 5.00
Begin VB.Form FrmExit
BackColor = &H000000FF&
BorderStyle = 0 'None
Caption = "Ending"
ClientHeight = 840
ClientLeft = 5700
ClientTop = 5955
ClientWidth = 5745
LinkTopic = "Form1"
ScaleHeight = 840
ScaleWidth = 5745
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 150
Left = 480
Top = 840
End
Begin VB.Label Label1
BackColor = &H00FF0000&
Caption = "Please Wait While WebMon Exits"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 375
Left = 120
TabIndex = 0
Top = 240
Width = 5535
End
End
Attribute VB_Name = "FrmExit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Timer1_Timer()
Label1.Caption = Label1.Caption & "."
DoEvents
End Sub